home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / sort.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  2KB  |  47 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. #include "mapping.h"
  20.  
  21. /* These must be in the same order as in the global var SortMethods[] */
  22. #define SORT_DATE     1   /* the date the mail was sent. */
  23. #define SORT_SIZE     2
  24. #define SORT_SUBJECT  3
  25. #define SORT_FROM     4
  26. #define SORT_ORDER    5   /* the order the messages appear in the mailbox. */
  27. #define SORT_THREADS  6
  28. #define SORT_RECEIVED 7   /* when the message were delivered locally */
  29. #define SORT_MAX      7   /* FOO - needs to be changed if more methods */
  30. #define SORT_MASK     0x7
  31. #define SORT_REVERSE  8
  32. #define SORT_LAST     16
  33.  
  34. void mutt_clear_threads (CONTEXT *);
  35. void mutt_sort_headers (CONTEXT *, int);
  36. void mutt_sort_threads (CONTEXT *, int);
  37. int mutt_select_sort (int);
  38.  
  39. typedef int sort_t (const void *, const void *);
  40. sort_t *mutt_get_sort_func (int);
  41.  
  42. WHERE short BrowserSort INITVAL (SORT_SUBJECT);
  43. WHERE short Sort INITVAL (SORT_DATE);
  44. WHERE short SortAux INITVAL (SORT_DATE); /* auxiallary sorting method */
  45.  
  46. extern const struct mapping_t SortMethods[];
  47.